home *** CD-ROM | disk | FTP | other *** search
/ Windows News 2005 November / WNnov2005.iso / Windows / Equipement / hMailServer / hMailServer-4.1-Build-136.exe / {app} / DBScripts / Upgrade1500to1600MySQL.sql < prev    next >
Encoding:
Text File  |  2004-07-07  |  405 b   |  14 lines

  1. insert into hm_settings (settingname, settingstring, settinginteger) values ('usespamhaus', '', 0)
  2.  
  3. create table hm_securityranges
  4. (
  5.     rangeid int auto_increment not null, primary key(rangeid), unique(rangeid),
  6.        rangepriorityid int not null,
  7.     rangelowerip bigint unsigned not null,
  8.     rangeupperip bigint unsigned not null,
  9.     rangeoptions int not null
  10. )
  11.  
  12. update hm_dbversion set value = 1600
  13.  
  14.